summaryrefslogtreecommitdiff
path: root/src/interfaceconsole.h
blob: 74f88d00197d8fada4180d147695b0392310e355 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef INTERFACE_CONSOLE_H
#define INTERFACE_CONSOLE_H

#include "interface.h"

class InterfaceConsole : public Interface
{
public:
	InterfaceConsole();
	virtual ~InterfaceConsole();
};

#endif